{% extends "base.html" %} {% block title %}Manage Patients - Admin Panel{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Admin Panel

{{ get_current_user().name }}

Management
{% include 'admin/_management_sidebar.html' %}

Patient Management

Overview of all registered patients in the system

{{ total_patients }}

Total Patients
All registered users in the system

{{ profiles_complete }}

Profiles Complete
Ready to book appointments

{{ active_this_month }}

Active This Month
Patients with appointments
Patient Directory
{% if patients %}
{% for patient_user in patients %} {% set pf = patient_filter_flags[patient_user.id] %} {% endfor %}
# Patient Contact Info Registered Date Actions
{{ loop.index }}
{% if patient_user.profile_picture %} {{ patient_user.name }} {% else %} {{ patient_user.name[0].upper() }} {% endif %}
{{ patient_user.name }}
ID: {{ patient_user.id }}
{{ patient_user.email }} {{ patient_user.phone|format_phone }}
{{ patient_user.created_at.strftime('%d %b, %Y') }}
Details
{% else %}
No patients found

Registered patients will appear here.

{% endif %}
{% endblock %}